iT邦幫忙

第 12 屆 iThome 鐵人賽

DAY 9
0
Mobile Development

小菜逼學習IOS系列 第 9

隨心所欲想變就變tableview-倒數第22篇

  • 分享至 

  • xImage
  •  

當你看到如麥當勞報報精緻到不行的 Table View,有圖片又有許多不同的 Label 是怎麼來的呢,那我們就繼續看下去

Step.1

首先我們要創一個 Table View Cell,選擇 Cocoa Touch Class

Also create XIB file 給打勾

Step.2

創建成功後,你會發現你多了兩個檔案,這時你點剛剛創的 XIB 檔,把你想要的全部拉進去

拉好後再拉 Outlet 到你的 Cell 裡

Step.3

進到你的 ViewController 在你的 ViewDidLoad,TableViewCell: XIB檔案名稱 、cell: Identifier名稱

        self.tableview.register(UINib(nibName: "TableViewCell", bundle: nil), forCellReuseIdentifier: "cell")

在 func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell 指定剛剛創建的cell

let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as! TableViewCell

就能 RUN 囉


上一篇
tableview基本教學與套件FastScroll操作(下) - 倒數第23篇
下一篇
想學好程式都要懂的「生命週期」-倒數第21篇
系列文
小菜逼學習IOS30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言